home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Classicos / Pac Man white.swf / scripts / DefineSprite_117 / frame_31 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  344 b   |  21 lines

  1. tellTarget("/")
  2. {
  3.    if(!newGame)
  4.    {
  5.       Ready.gotoAndStop("Level");
  6.       Ready._visible = true;
  7.       var j = 0;
  8.       while(j < 31)
  9.       {
  10.          var i = 0;
  11.          while(i < 28)
  12.          {
  13.             Maze[i]["P" + j]._visible = true;
  14.             i++;
  15.          }
  16.          j++;
  17.       }
  18.    }
  19.    newGame = false;
  20. }
  21.